home *** CD-ROM | disk | FTP | other *** search
/ PC World 2007 March / PCWorld_2007-03_cd.bin / domacnost a kancelar / scribus / scribus-1.3.3.7-win32-install.exe / lib / lib-old / lockfile.py < prev    next >
Text File  |  2004-07-27  |  356b  |  16 lines

  1. import struct, fcntl
  2.  
  3. def writelock(f):
  4.     _lock(f, fcntl.F_WRLCK)
  5.  
  6. def readlock(f):
  7.     _lock(f, fcntl.F_RDLCK)
  8.  
  9. def unlock(f):
  10.     _lock(f, fcntl.F_UNLCK)
  11.  
  12. def _lock(f, op):
  13.     dummy = fcntl.fcntl(f.fileno(), fcntl.F_SETLKW,
  14.                         struct.pack('2h8l', op,
  15.                                     0, 0, 0, 0, 0, 0, 0, 0, 0))
  16.